home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / comm / www / htdig3_0_8b2a1.lha / htdig-3.0.8b2 / htfuzzy / Soundex.h < prev    next >
C/C++ Source or Header  |  1997-08-15  |  465b  |  35 lines

  1. //
  2. // Soundex.h
  3. //
  4. // $Id: Soundex.h,v 1.1.1.1 1997/02/03 17:11:12 turtle Exp $
  5. //
  6. // $Log: Soundex.h,v $
  7. // Revision 1.1.1.1  1997/02/03 17:11:12  turtle
  8. // Initial CVS
  9. //
  10. //
  11. #ifndef _Soundex_h_
  12. #define _Soundex_h_
  13.  
  14. #include "Fuzzy.h"
  15.  
  16. class Soundex : public Fuzzy
  17. {
  18. public:
  19.     //
  20.     // Construction/Destruction
  21.     //
  22.                     Soundex();
  23.     virtual            ~Soundex();
  24.  
  25.     virtual void    generateKey(char *word, String &key);
  26.  
  27.     virtual void    addWord(char *word);
  28.     
  29. private:
  30. };
  31.  
  32. #endif
  33.  
  34.  
  35.